home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Compilers / Miracle C Compiler / miricleC compiler.msi / Instal01.cab / _007E47D6854C4A6196A7D8F9A6D67B37 next >
Encoding:
Text File  |  2000-07-16  |  822 b   |  24 lines

  1. #define NULL 0
  2. typedef unsigned int size_t;
  3.  
  4. void *memchr(void *buf, int c, size_t count);
  5. int   memcmp(void *buf1, void *buf2, size_t n);
  6. void *memcpy(void *buf1, void *buf2, size_t count);
  7. void *memmove(void *buf1, void *buf2, size_t count);
  8. void *memset(void *buf, int val, size_t n);
  9.  
  10. char *strcat(char *buf1,  char *buf2);
  11. char *strncat(char *buf1, char *buf2, size_t n);
  12. char *strcpy(char *buf1, char *buf2);
  13. char *strncpy(char *buf1, char *buf2, size_t n);
  14. int   strcmp(char *str1, char *str2);
  15. int   strncmp(char *buf1, char *buf2, size_t n);
  16.  
  17. char *strchr(char *str, int c);
  18. char *strrchr(char *buf, int c);
  19. size_t strlen(char *str);
  20. char *strpbrk(char *str1, char *str2);
  21. char *strstr(char *buf1, char *buf2);
  22. size_t strspn(char *str1, char *str2);
  23. size_t strcspn(char *str1, char *str2);
  24.